summaryrefslogtreecommitdiff
path: root/community-testing/xnc/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/xnc/PKGBUILD')
-rw-r--r--community-testing/xnc/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community-testing/xnc/PKGBUILD b/community-testing/xnc/PKGBUILD
new file mode 100644
index 000000000..4cf3968de
--- /dev/null
+++ b/community-testing/xnc/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 63327 2012-01-30 19:12:18Z ibiru $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=xnc
+pkgver=5.0.4
+pkgrel=6
+pkgdesc="X nortern captain file manager"
+arch=(i686 x86_64)
+url="http://xnc.jinr.ru/"
+license=('GPL')
+depends=('gcc-libs' 'libpng' 'libtiff' 'libsm' 'libxext' 'libjpeg>=7')
+makedepends=('libxt')
+options=('!makeflags')
+#source=(http://xnc.jinr.ru/src-5/xnc-$pkgver.src.tar.gz xnc-gcc44.patch)
+source=(ftp://ftp.archlinux.org/other/community/xnc/xnc-$pkgver.src.tar.gz
+ xnc-gcc44.patch
+ libpng15.patch)
+md5sums=('62446cdfdf5730f125fb351a658c0bd3'
+ 'c0037a081824bca691e59a4ec68b6686'
+ '7159af1c645fda860f0e5057100651ad')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ patch -p1 <$srcdir/xnc-gcc44.patch
+ patch -p1 <$srcdir/libpng15.patch
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+ make DESTDIR="$pkgdir" install
+}