mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
34 lines
862 B
Plaintext
34 lines
862 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libpaper
|
|
pkgver=1.1.24
|
|
_pkgver=${pkgver}+nmu4
|
|
pkgrel=4
|
|
pkgdesc="Library for handling paper characteristics"
|
|
url="http://packages.debian.org/unstable/source/libpaper"
|
|
arch="all"
|
|
options="!check" # No test suite.
|
|
license="GPL-2.0"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=""
|
|
makedepends=""
|
|
source="http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_${_pkgver}.tar.gz"
|
|
|
|
builddir="$srcdir"/$pkgname-$_pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir="$pkgdir"/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make prefix="$pkgdir"/usr install
|
|
}
|
|
|
|
sha512sums="4412139ffab7b9658f186a825c7d4ae3ba397ff32852a66decccef7b74647dd365573b9f00145fe2fa95dd16e30c280a8aeeac90a14006ed140f5b85e2f0e508 libpaper_1.1.24+nmu4.tar.gz"
|