mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
740 B
Bash
37 lines
740 B
Bash
# Rockchip Tools
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=rkutils
|
|
pkgver=20140318
|
|
pkgrel=1
|
|
pkgdesc="Rockchip Tools"
|
|
arch=('armv7h')
|
|
url="https://github.com/Astralix/rkutils"
|
|
depends=('openssl')
|
|
makedepends=('git')
|
|
license=('GPL')
|
|
source=("git+https://github.com/Astralix/rkutils.git"
|
|
"git+https://github.com/olegk0/tools.git")
|
|
md5sums=('SKIP'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd rkutils
|
|
sed -i 's/CFLAGS :=/CFLAGS \+=/' Makefile
|
|
make
|
|
|
|
cd ../tools
|
|
gcc -o mkbootimg.o -c mkbootimg.c -I.
|
|
gcc -I. ${CFLAGS} -o mkbootimg mkbootimg.c -lcrypto
|
|
}
|
|
|
|
package() {
|
|
cd rkutils
|
|
|
|
mkdir -p "${pkgdir}"/usr/bin
|
|
make INSTALLDIR="${pkgdir}/usr/bin" install
|
|
|
|
cp ../tools/mkbootimg "${pkgdir}"/usr/bin
|
|
}
|