summaryrefslogtreecommitdiff
path: root/community/nemo-fileroller/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/nemo-fileroller/PKGBUILD')
-rw-r--r--community/nemo-fileroller/PKGBUILD41
1 files changed, 41 insertions, 0 deletions
diff --git a/community/nemo-fileroller/PKGBUILD b/community/nemo-fileroller/PKGBUILD
new file mode 100644
index 000000000..6b767fe38
--- /dev/null
+++ b/community/nemo-fileroller/PKGBUILD
@@ -0,0 +1,41 @@
+
+# Maintainer: Alexandre Filgueira <alexfilgueira@cinnarch.com>
+# Contributor: twa022 <twa022 at gmail dot com>
+
+pkgname=nemo-fileroller
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="Nemo fileroller extension"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxmint/nemo-extensions"
+license=('GPL')
+source=("configure.in_fix.patch"
+ "$pkgname-$pkgver.tar.gz::http://github.com/linuxmint/nemo-extensions/archive/master.tar.gz")
+
+depends=('nemo' 'file-roller')
+options=('!libtool' '!emptydirs')
+
+sha256sums=('3381a3421b2fd69746b610cfa3dfeb83d4795076ec692fcf28bcccf69bfe36d0'
+ 'b15f7cd536f595acd070cdff5b9c5c59df44bbc7bf91a1fd560702875b0f3669')
+
+
+build() {
+
+
+ cd nemo-extensions-master/${pkgname}
+
+ ## I think they started with the nemo-dropbox source, so there
+ ## are some unnecessary python dependencies
+ patch -uNp2 -r- -i ${srcdir}/configure.in_fix.patch
+ autoreconf -fi
+
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd nemo-extensions-master/${pkgname}
+ make DESTDIR="${pkgdir}" install
+}
+
+