mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-05 21:52:08 +01:00
26 lines
633 B
Plaintext
26 lines
633 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=imake
|
|
pkgver=1.0.8
|
|
pkgrel=0
|
|
pkgdesc="X Windows make utility"
|
|
url="http://www.x.org"
|
|
arch="all"
|
|
license="MIT-enna"
|
|
options="!check" # No test suite.
|
|
makedepends="util-macros xorgproto"
|
|
subpackages="$pkgname-doc"
|
|
source="https://ftp.x.org/pub/individual/util/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="5352b0148664506c8eb7ba80f95fced146d150398673547ba0b2c7c966a382bc21de43dfb8e0d74e38a0a563f16ddbec48bf8c8e6daa1a0899a95403579d7728 imake-1.0.8.tar.bz2"
|