mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
27 lines
562 B
Plaintext
27 lines
562 B
Plaintext
# Description: Version control system for thunar
|
|
# URL: https://git.xfce.org/thunar-plugins/thunar-vcs-plugin/
|
|
# Maintainer: jolupa, jolupameister at gmail dot com
|
|
# Depends on: xfce4-dev-tools thunar git
|
|
|
|
name=thunar-vcs-plugin
|
|
version=0.2.0
|
|
release=2
|
|
source=(https://git.xfce.org/thunar-plugins/$name/snapshot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-subversion \
|
|
--enable-git
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|