edb149aba6
Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
39 lines
936 B
Plaintext
39 lines
936 B
Plaintext
# Description: Thunar plugin for SVN and GIT integrations
|
|
# URL: http://goodies.xfce.org/projects/thunar-plugins/thunar-vcs-plugin
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: thunar-vcs-plugin git
|
|
# Group: xfce4
|
|
|
|
name=thunar-vcs-plugin-git
|
|
nameBuild=${name/-git/}
|
|
version=0.1.4
|
|
release=1
|
|
source=(http://archive.xfce.org/src/thunar-plugins/$name/${version%.*}/$nameBuild-$version.tar.bz2)
|
|
|
|
build ()
|
|
{
|
|
# go into the source directory
|
|
cd $SRC/$nameBuild-$version
|
|
|
|
|
|
# configure thunar-vcs-plugin
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/thunar \
|
|
--disable-nls \
|
|
--disable-dependency-tracking \
|
|
--disable-subversion \
|
|
|
|
|
|
# make thunar-vcs-plugin
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
# remove some things we dont need
|
|
rm -r $PKG/usr/share/locale
|
|
rm -r $PKG/usr/lib/thunarx-2/
|
|
find $PKG/usr/share/icons/hicolor -name subversion.png -delete
|
|
}
|