blob: da5bd98cba24fba5ffd9f976abdf4c2786ce4770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Ce petit programme permet de modifier facilement votre thème GTK
# URL: http://plasmasturm.org/code/gtk-chtheme/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gtk
# Run on: gtk
name=gtk-chtheme
version=0.3.1
release=1
source=(http://plasmasturm.org/programs/gtk-chtheme/$name-$version.tar.bz2)
build() {
cd $name-$version
make
mkdir -p $PKG/usr/bin
install -m755 gtk-chtheme $PKG/usr/bin
}
|