mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-23 01:21:46 +01:00
41 lines
809 B
Plaintext
41 lines
809 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=imake
|
|
pkgver=1.0.4
|
|
pkgrel=0
|
|
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-dev $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 || make || return 1
|
|
}
|
|
|
|
package() {
|
|
echo "PACKAGE stage"
|
|
echo "pkgdir = $pkgdir"
|
|
cd "$_builddir"
|
|
pwd
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="0fd1e53d94142ddee5340f87de0b9561 imake-1.0.4.tar.gz"
|