mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
759 B
Bash
26 lines
759 B
Bash
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
|
|
pkgname=printoxx
|
|
pkgver=2.0.2
|
|
pkgrel=3
|
|
pkgdesc="Adjusting images on a sheet of paper for printing"
|
|
url="http://kornelix.squarespace.com/printoxx"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
depends=('gtk2')
|
|
source=(Makefile \
|
|
"http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('01a3e4b4b9037b5f279f59c46983532e' '99f93e10cd898c93d0e57d2f7aa2b619')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
cp $srcdir/Makefile . || return 1
|
|
PREFIX=/usr make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
install -d $pkgdir/usr/share/applications/ || return 1
|
|
make PREFIX=$pkgdir/usr install || return 1
|
|
}
|