llgal-0.13.19 PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: John D Jones III AKA jnbek <jnbek1972 -_AT_- g m a i l -_Dot_- com> | |
pkgname=llgal | |
pkgver=0.13.19 | |
pkgrel=1 | |
pkgdesc="On-line gallery generator based on iGal" | |
arch=('x86_64') | |
url="http://home.gna.org/llgal/" | |
license=('GPL') | |
depends=('perl' 'perl-image-size' 'perl-locale-gettext') | |
makedepends=() | |
provides=() | |
conflicts=() | |
replaces=() | |
backup=() | |
options=(!emptydirs) | |
install= | |
source=(https://github.com/bgoglin/llgal/archive/$pkgname-$pkgver.tar.gz) | |
md5sums=('20e25ef3cf1d969caf1549a888092014') | |
package() { | |
cd "$srcdir/$pkgname-$pkgname-$pkgver" | |
sed -i 's/\/usr\/local/\/usr/g' Makefile | |
make || return 1 | |
make install DESTDIR="$pkgdir/" || return 1 | |
make install-man DESTDIR="$pkgdir/" || return 1 | |
make install-doc DOCDIR="$pkgdir/usr/share/doc/llgal" || return 1 | |
# remove perllocal.pod and .packlist | |
find "$pkgdir" -name perllocal.pod -delete | |
find "$pkgdir" -name .packlist -delete | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment