summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xfce4-places-plugin/.md5sum2
-rw-r--r--xfce4-places-plugin/Pkgfile31
2 files changed, 21 insertions, 12 deletions
diff --git a/xfce4-places-plugin/.md5sum b/xfce4-places-plugin/.md5sum
index 23942f6..a55dfa4 100644
--- a/xfce4-places-plugin/.md5sum
+++ b/xfce4-places-plugin/.md5sum
@@ -1 +1 @@
-8f3ec883efb0775052eeea816bbd8a23 xfce4-places-plugin-1.6.0.tar.bz2
+fcae9b38a8affcd82699a94991bba29b xfce4-places-plugin-1.7.0.tar.bz2
diff --git a/xfce4-places-plugin/Pkgfile b/xfce4-places-plugin/Pkgfile
index af4dfa3..f770343 100644
--- a/xfce4-places-plugin/Pkgfile
+++ b/xfce4-places-plugin/Pkgfile
@@ -6,21 +6,30 @@
# Group: xfce4
name=xfce4-places-plugin
-version=1.6.0
+version=1.7.0
release=1
source=(http://archive.xfce.org/src/panel-plugins/$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/lib \
- --disable-debug
- make
- make DESTDIR=$PKG install
+ # configure the plugin
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib \
+ --disable-debug
- rm -rf $PKG/usr/share/locale
- find $PKG/usr/share/xfce4/panel/plugins -type f -name '*.desktop' \
- -exec sed -r '/\[.+\]=/d' -i {} \;
+
+ # make the plugin
+ make
+ make DESTDIR=$PKG install
+
+
+ # cleanup
+ rm -rf $PKG/usr/share/locale
+ find $PKG/usr/share/xfce4/panel/plugins -type f -name '*.desktop' \
+ -exec sed -r '/\[.+\]=/d' -i {} \;
}

Generated by cgit