summaryrefslogtreecommitdiff
path: root/xfce4-places-plugin/Pkgfile
blob: f7703433bfa8d3bfb599c64b56f74f5de3f9bafe (plain)
    1 # Description: Plugin for quick access to folders, documents, and removable media.
    2 # URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin
    3 # Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
    4 # Packager: Jose V Beneyto, sepen at crux dot nu
    5 # Depends on: thunar
    6 # Group: xfce4
    7 
    8 name=xfce4-places-plugin
    9 version=1.7.0
   10 release=1
   11 source=(http://archive.xfce.org/src/panel-plugins/$name/${version%.*}/$name-$version.tar.bz2)
   12 
   13 build ()
   14 {
   15 	# go into the source directory
   16 	cd $SRC/$name-$version
   17 
   18 
   19 	# configure the plugin
   20 	./configure \
   21 		--prefix=/usr \
   22 		--libexecdir=/usr/lib \
   23 		--disable-debug
   24 
   25 
   26 	# make the plugin
   27 	make
   28 	make DESTDIR=$PKG install
   29 
   30 
   31 	# cleanup
   32 	rm -rf $PKG/usr/share/locale
   33 	find $PKG/usr/share/xfce4/panel/plugins -type f -name '*.desktop' \
   34 		-exec sed -r '/\[.+\]=/d' -i {} \;
   35 }

Generated by cgit