From 9504a61b081c42db231ae96a07a71a7ee72fed8d Mon Sep 17 00:00:00 2001 From: Leo Unglaub Date: Wed, 4 Mar 2015 02:24:07 +0000 Subject: [PATCH] thunar-volman: Cleanup the Pkgfile Signed-off-by: Leo Unglaub --- thunar-volman/Pkgfile | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/thunar-volman/Pkgfile b/thunar-volman/Pkgfile index 5c18408..4c26292 100644 --- a/thunar-volman/Pkgfile +++ b/thunar-volman/Pkgfile @@ -10,16 +10,27 @@ version=0.8.1 release=1 source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/$name-$version.tar.bz2) -build () { - cd $name-$version +build () +{ + # go into the source directory + cd $SRC/$name-$version - ./configure --prefix=/usr \ - --libexecdir=/usr/bin \ - --disable-static \ - --enable-debug=no - make - make DESTDIR=$PKG install + # configure thunar-volman + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/bin \ + --disable-static \ + --disable-dependency-tracking \ + --disable-debug \ + --disable-nls - rm -rf $PKG/usr/share/locale + + # make thunar-volman + make + make DESTDIR=$PKG install + + + # cleanup + rm -rf $PKG/usr/share/locale }