diff options
Diffstat (limited to '~fauno')
-rw-r--r-- | ~fauno/distccd-zeroconf/PKGBUILD | 2 | ||||
-rw-r--r-- | ~fauno/kyotocabinet/PKGBUILD | 2 | ||||
-rw-r--r-- | ~fauno/kyototycoon/PKGBUILD | 2 | ||||
-rw-r--r-- | ~fauno/minidjvu/PKGBUILD | 31 |
4 files changed, 34 insertions, 3 deletions
diff --git a/~fauno/distccd-zeroconf/PKGBUILD b/~fauno/distccd-zeroconf/PKGBUILD index 2faf6acb3..1690daad9 100644 --- a/~fauno/distccd-zeroconf/PKGBUILD +++ b/~fauno/distccd-zeroconf/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=distcc pkgver=3.1 pkgrel=1 pkgdesc="A distributed C, C++, Obj C compiler with zeroconf support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/distcc/" license=('GPL') depends=('gcc' 'popt' 'avahi') diff --git a/~fauno/kyotocabinet/PKGBUILD b/~fauno/kyotocabinet/PKGBUILD index 1636bfda0..bd421dc3c 100644 --- a/~fauno/kyotocabinet/PKGBUILD +++ b/~fauno/kyotocabinet/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kyotocabinet pkgver=1.2.76 pkgrel=1 pkgdesc="a modern implementation of DBM in C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fallabs.com/kyotocabinet" license=('LGPL3') makedepends=('gcc>=3.1' 'make' 'pkgconfig' 'zlib') diff --git a/~fauno/kyototycoon/PKGBUILD b/~fauno/kyototycoon/PKGBUILD index af88f6020..97f42097c 100644 --- a/~fauno/kyototycoon/PKGBUILD +++ b/~fauno/kyototycoon/PKGBUILD @@ -3,7 +3,7 @@ pkgname=kyototycoon pkgver=0.9.56 pkgrel=1 pkgdesc="A lightweight conncurent remote frontend for Kyoto Cabinet." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fallabs.com/kyototycoon" license=('GPL3') depends=('zlib' 'kyotocabinet') diff --git a/~fauno/minidjvu/PKGBUILD b/~fauno/minidjvu/PKGBUILD new file mode 100644 index 000000000..664e8a3f8 --- /dev/null +++ b/~fauno/minidjvu/PKGBUILD @@ -0,0 +1,31 @@ +# Contributor: Orivej Desh <masecretaire@gmx.fr> +# Maintainer: Orivej Desh <masecretaire@gmx.fr> +pkgname=minidjvu +pkgver=0.8 +pkgrel=2 +pkgdesc="Highly efficient DjVu encoder for black-and-white images" +arch=('i686' 'x86_64' 'mips64el') +url="http://minidjvu.sourceforge.net/" +license=('GPL') +depends=("gcc-libs" "libtiff") +options=("!libtool") +source=("http://downloads.sourceforge.net/project/minidjvu/minidjvu/$pkgver/minidjvu-$pkgver.tar.gz") +md5sums=('b354eb74d83c6e2d91aab2a6c2879ba7') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --libdir=/usr/lib + + sed -i -e 's#/usr/bin/gzip#/bin/gzip#' Makefile + sed -i -e 's#-9 \$(MANDIR)#-9 $(DESTDIR)$(MANDIR)#' Makefile + + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + mkdir -p "$pkgdir"/usr/{bin,lib,share/man/man1} + make DESTDIR="$pkgdir/" install +} + |