mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
main/printproto: modernise, add check
This commit is contained in:
parent
bd0867fdf0
commit
76e055f5b8
@ -1,36 +1,38 @@
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=printproto
|
||||
pkgver=1.0.5
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="X11 print extension wire protocol"
|
||||
url="http://xorg.freedesktop.org/"
|
||||
arch="noarch"
|
||||
license="custom"
|
||||
depends=""
|
||||
depends_dev="util-macros"
|
||||
makedepends="$depends_dev"
|
||||
makedepends="util-macros"
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://www.x.org/releases/individual/proto/$pkgname-$pkgver.tar.bz2"
|
||||
|
||||
_builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
prepare() {
|
||||
cd "$_builddir"
|
||||
update_config_sub || return 1
|
||||
cd "$builddir"
|
||||
default_prepare
|
||||
update_config_sub
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
cd "$builddir"
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
|| return 1
|
||||
make || return 1
|
||||
--prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
cd "$builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
sha512sums="1f7b2cb8cce0b65c0f859666f9e0d1be19c8323bc36c514d1e47f9b52390ee6ec49661e18e0ae8f4b7c76775667b5489ef177adb4e6ae87eed9fe1864fbf8279 printproto-1.0.5.tar.bz2"
|
||||
|
Loading…
Reference in New Issue
Block a user