aports/testing/imake/APKBUILD
2012-02-05 11:09:01 +00:00

40 lines
764 B
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=imake
pkgver=1.0.4
pkgrel=1
pkgdesc="X Windows make utility"
url="http://www.x.org"
arch="all"
license="custom"
depends=
depends_dev=
makedepends="xproto util-macros $depends_dev"
install=""
subpackages="$pkgname-doc"
source="http://ftp.x.org/pub/individual/util/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="0fd1e53d94142ddee5340f87de0b9561 imake-1.0.4.tar.gz"