opt/paper/Pkgfile

28 lines
735 B
Plaintext
Raw Normal View History

2019-07-30 15:55:25 +02:00
# Description: Utility to set the default paper size
# URL: https://github.com/rrthomas/paper/
# Maintainer: Juergen Daubert, jue at crux dot nu
name=paper
2020-04-20 14:38:50 +02:00
version=2.2
2019-07-30 15:55:25 +02:00
release=1
2020-04-20 14:38:50 +02:00
source=(https://github.com/rrthomas/paper/releases/download/v$version/$name-$version.tar.gz
paper.1 paperspecs.5)
2019-07-30 15:55:25 +02:00
build () {
cd $name-$version
2020-04-20 14:38:50 +02:00
sed '/^SUBDIRS/s/man//' -i Makefile.in
2019-07-30 15:55:25 +02:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/paper
make
make DESTDIR=$PKG install
2020-04-20 14:38:50 +02:00
install -d $PKG/usr/share/man/man{1,5}
install -m 0644 $SRC/paper.1 $PKG/usr/share/man/man1
install -m 0644 $SRC/paperspecs.5 $PKG/usr/share/man/man5
2019-07-30 15:55:25 +02:00
rm -r $PKG/usr/share/doc
}