summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Unglaub <leo@leo-unglaub.net>2015-03-04 02:18:30 +0000
committerLeo Unglaub <leo@leo-unglaub.net>2015-03-04 02:18:30 +0000
commit6a07fe4b6418fe6e3127d0d6fb5e38f872d7e7bb (patch)
tree3d28efb32c99fefc001fbdf0212f82f558dd1d5a
parent602f897e6798e31bfbee1ff19e81e6dcbe0321e5 (diff)
downloadxfce-6a07fe4b6418fe6e3127d0d6fb5e38f872d7e7bb.tar.gz
xfce-6a07fe4b6418fe6e3127d0d6fb5e38f872d7e7bb.tar.xz
tumbler: Cleaning the Pkgfile
With this commit i also removed gstreamer* support from the .footprint. It was not in there as a dependency and just luck if ./configure found it anyway. Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
-rw-r--r--tumbler/.footprint2
-rw-r--r--tumbler/Pkgfile26
2 files changed, 19 insertions, 9 deletions
diff --git a/tumbler/.footprint b/tumbler/.footprint
index c364779..f8f8df4 100644
--- a/tumbler/.footprint
+++ b/tumbler/.footprint
@@ -40,8 +40,6 @@ lrwxrwxrwx root/root usr/lib/tumbler-1/plugins/cache/tumbler-cache-plugin.so ->
-rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-cover-thumbnailer.so
-rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-font-thumbnailer.la
-rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-font-thumbnailer.so
--rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-gst-thumbnailer.la
--rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-gst-thumbnailer.so
-rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-jpeg-thumbnailer.la
-rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-jpeg-thumbnailer.so
-rwxr-xr-x root/root usr/lib/tumbler-1/plugins/tumbler-pixbuf-thumbnailer.la
diff --git a/tumbler/Pkgfile b/tumbler/Pkgfile
index 1e80d22..75e17fb 100644
--- a/tumbler/Pkgfile
+++ b/tumbler/Pkgfile
@@ -10,14 +10,26 @@ version=0.1.31
release=1
source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/$name-$version.tar.bz2)
-build() {
- cd $name-$version
+build () {
- ./configure --prefix=/usr \
- --disable-nls
+ # go into the source directory
+ cd $SRC/$name-$version
- make
- make DESTDIR=$PKG install
- rm -rf $PKG/usr/share/{gtk-doc,locale}
+ # configure tumbler
+ ./configure \
+ --prefix=/usr \
+ --disable-nls \
+ --disable-dependency-tracking \
+ --disable-gtk-doc \
+ --disable-gstreamer-thumbnailer \
+
+
+ # make tumbler
+ make
+ make DESTDIR=$PKG install
+
+
+ # remove some stuff we dont need
+ rm -rf $PKG/usr/share/{gtk-doc,locale}
}

Generated by cgit