20 lines
579 B
Plaintext
20 lines
579 B
Plaintext
# Description: Mousepad is a simple GTK+ 2 text editor for the Xfce desktop environment.
|
|
# URL: http://www.xfce.org/projects/mousepad/
|
|
# Packager: tyrry at nutyx dot org, tnut at nutyx dot org
|
|
# Depends on: dbus-glib startup-notification xorg-libxrandr xorg-libxinerama xorg-libsm desktop-file-utils gtksourceview3
|
|
|
|
run=( gtk-update-icon-cache desktop-file-utils )
|
|
|
|
name=mousepad
|
|
version=0.4.0
|
|
release=3
|
|
|
|
source=(http://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|