xfce4-clipman-plugin: Update to 1.2.6

Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
This commit is contained in:
Leo Unglaub 2015-03-06 19:20:09 +00:00
parent fd6edf046f
commit b89f65486e
3 changed files with 26 additions and 13 deletions

View File

@ -17,6 +17,8 @@ drwxr-xr-x root/root usr/lib/xfce4/panel/plugins/
-rwxr-xr-x root/root usr/lib/xfce4/panel/plugins/libclipman.la
-rwxr-xr-x root/root usr/lib/xfce4/panel/plugins/libclipman.so
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/appdata/
-rw-r--r-- root/root usr/share/appdata/xfce4-clipman.appdata.xml
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/xfce4-clipman.desktop
drwxr-xr-x root/root usr/share/icons/

View File

@ -1 +1 @@
5bace1f44415478cc32cbd9b1d79e867 xfce4-clipman-plugin-1.2.5.tar.bz2
f7f2440647493243cbd7787eaee92fcb xfce4-clipman-plugin-1.2.6.tar.bz2

View File

@ -6,22 +6,33 @@
# Group: xfce4
name=xfce4-clipman-plugin
version=1.2.5
version=1.2.6
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-static \
--disable-debug
make
make DESTDIR=$PKG install
# configure the plugin
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--disable-static \
--disable-debug \
--disable-nls \
--disable-dependency-tracking
rm -rf $PKG/usr/share/{doc,locale}
find $PKG/usr -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
# make the plugin
make
make DESTDIR=$PKG install
# cleanup
rm -rf $PKG/usr/share/{doc,locale}
find $PKG/usr -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
}