mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
29 lines
893 B
Bash
29 lines
893 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Roland Schaeuble <rschaeuble@gmx.ch>
|
|
|
|
pkgname=cdcover
|
|
pkgver=0.7.4
|
|
pkgrel=2
|
|
pkgdesc="cdcover allows the creation of inlay-sheets for cd-cases and dvd's"
|
|
arch=('i686' 'x86_64')
|
|
url="http://cdcover.sourceforge.net"
|
|
license=("GPL")
|
|
depends=(python tk)
|
|
install=('cdcover.install')
|
|
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('ab54e927e1c2f9210062ae9425cea669')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname
|
|
|
|
patch -p0 Makefile <<EOF
|
|
13c13
|
|
< IMAGEFILES=autonum.gif cddb.gif exit.gif gv.gif logo.gif nocddb.gif ps.gif
|
|
---
|
|
> IMAGEFILES=application-exit.gif cddb.gif document-print-preview.gif document-save.gif logo.gif nocddb.gif renumber.gif
|
|
EOF
|
|
|
|
make target=/usr prefix=$startdir/pkg/usr install && \
|
|
rm -rf $pkgdir/usr/doc
|
|
}
|