mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
679 B
Bash
25 lines
679 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
# Contributor from Arch: cromo <dawid@klej.net>
|
|
|
|
pkgname=poster
|
|
pkgver=20060221
|
|
pkgrel=1
|
|
pkgdesc="Scales or tiles a postscript image to print on multiple pages"
|
|
arch=('x86_64')
|
|
#url="http://printing.kde.org/downloads/"
|
|
url='http://directory.fsf.org/wiki/Poster'
|
|
license=('GPL')
|
|
source=(ftp://ftp.kde.org/pub/kde/printing/$pkgname.tar.bz2)
|
|
md5sums=('04b421e2ce516a44b6c5a9a092dfa623')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
install -D -m755 $pkgname "$pkgdir/usr/bin/$pkgname"
|
|
install -D -m644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
|
|
}
|