diff options
Diffstat (limited to 'community/fbv/PKGBUILD')
-rw-r--r-- | community/fbv/PKGBUILD | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/community/fbv/PKGBUILD b/community/fbv/PKGBUILD deleted file mode 100644 index be75edd40..000000000 --- a/community/fbv/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 94921 2013-08-01 07:01:11Z bpiotrowski $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Aectann <aectann@infoline.su> - -pkgname=fbv -pkgver=1.0b -pkgrel=7 -pkgdesc="FrameBuffer image viewer" -arch=('i686' 'x86_64') -url="http://s-tech.elsat.net.pl/fbv/" -license=('GPL') -depends=('libpng' 'libungif' 'libjpeg') -source=(http://s-tech.elsat.net.pl/fbv/$pkgname-$pkgver.tar.gz - giflib-5.0.patch) -md5sums=('3e466375b930ec22be44f1041e77b55d' - '6310899c97c4226352ad409c1c7fefb3') - -build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr --mandir=/usr/share/man - sed -i 's|LIBS.*|LIBS=-lpng -ljpeg -lungif -lgif|' Make.conf - sed -i 's|setjmp(png_ptr->jmpbuf)|setjmp(png_jmpbuf(png_ptr))|' png.c - patch -Np1 -i ../giflib-5.0.patch - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - mkdir -p $pkgdir/usr/bin - mkdir -p $pkgdir/usr/share/man/man1 - make DESTDIR=$pkgdir install -} |