opt/paper/Pkgfile

22 lines
462 B
Plaintext
Raw Normal View History

2019-07-30 15:55:25 +02:00
# Description: Utility to set the default paper size
2022-05-16 16:10:38 +02:00
# URL: https://github.com/rrthomas/paper/
# Maintainer: Juergen Daubert, jue at crux dot nu
2019-07-30 15:55:25 +02:00
name=paper
2023-04-27 10:16:14 +02:00
version=2.1.0
2019-07-30 15:55:25 +02:00
release=1
2023-02-24 12:22:34 +01:00
source=(https://github.com/rrthomas/libpaper/releases/download/v$version/lib$name-$version.tar.gz)
2019-07-30 15:55:25 +02:00
build () {
2022-05-16 16:10:38 +02:00
cd lib$name-$version
2020-04-20 14:38:50 +02:00
2022-05-16 16:10:38 +02:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/paper
make
make DESTDIR=$PKG install
2020-04-20 14:38:50 +02:00
2022-05-16 16:10:38 +02:00
rm -r $PKG/usr/share/doc
2019-07-30 15:55:25 +02:00
}