summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD12
-rw-r--r--rodent.install10
3 files changed, 9 insertions, 18 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f4744eba50b7..fb577f2ebf23 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,16 @@
pkgbase = rodent
pkgdesc = Lightweight, yet full of options filemanager, compatible with console commands
pkgver = 5.3.16.3
- pkgrel = 1
+ pkgrel = 2
url = http://xffm.org/
- install = rodent.install
arch = i686
arch = x86_64
license = GPL3
makedepends = pkg-config
makedepends = intltool
makedepends = librsvg
+ makedepends = ghostscript
depends = librfm5
- depends = desktop-file-utils
optdepends = python2: for rfm-simple-agent
source = https://downloads.sourceforge.net/project/xffm/5.3.16.3/rodent-5.3.16.3.tar.bz2
sha512sums = 83c85501d3fe49e84abe9bb61a23ca4ec86fb22abb2e9a01228b3180d114380ff085ee58f51b9ac47173214ab8323e0bde7cfca6fb9b7907d4b1551ad48326f5
diff --git a/PKGBUILD b/PKGBUILD
index cf1cb0f58222..22a095a4ef74 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,4 +1,5 @@
-# Maintainer: Barry Smith <brrtsm gmail cvom->
+# Maintainer: Brian Bidulock <bidulock@openss7.org>
+# Contributor: Barry Smith <brrtsm gmail cvom->
# Contributor: Steffen Weber <-boenki-gmx-de->
# Contributor: Brian Bidulock <bidulock@openss7.org>
# Contributor: Anntoin Wilkinson <anntoin gmail com>
@@ -6,15 +7,14 @@
pkgname=rodent
pkgver=5.3.16.3
-pkgrel=1
+pkgrel=2
pkgdesc="Lightweight, yet full of options filemanager, compatible with console commands"
arch=('i686' 'x86_64')
url="http://xffm.org/"
license=('GPL3')
-makedepends=('pkg-config' 'intltool' 'librsvg')
-depends=('librfm5' 'desktop-file-utils')
+makedepends=('pkg-config' 'intltool' 'librsvg' 'ghostscript')
+depends=('librfm5')
optdepends=('python2: for rfm-simple-agent')
-install=$pkgname.install
source=(https://downloads.sourceforge.net/project/xffm/$pkgver/$pkgname-$pkgver.tar.bz2)
sha512sums=('83c85501d3fe49e84abe9bb61a23ca4ec86fb22abb2e9a01228b3180d114380ff085ee58f51b9ac47173214ab8323e0bde7cfca6fb9b7907d4b1551ad48326f5')
@@ -27,6 +27,8 @@ build()
sed -i '/obex/d' apps/rodent-fuse/po/POTFILES.in
./configure --prefix=/usr #--disable-applications
+ # Fight unused direct deps
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
make
}
diff --git a/rodent.install b/rodent.install
deleted file mode 100644
index e83dc6479f67..000000000000
--- a/rodent.install
+++ /dev/null
@@ -1,10 +0,0 @@
-post_install() {
- update-desktop-database -q usr/share/applications
- gtk-update-icon-cache usr/share/icons/hicolor
-}
-post_upgrade() {
- post_install
-}
-post_remove() {
- post_install
-}