mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 15:12:20 +01:00
29 lines
607 B
Plaintext
29 lines
607 B
Plaintext
# Description: A simple text editor for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jolupameister at gmail dot com
|
|
# Depends on: libxfce4util gtk3 dbus-glib gtksourceview
|
|
|
|
name=mousepad
|
|
version=0.4.1
|
|
release=7
|
|
source=(http://archive.xfce.org/src/apps/mousepad/0.4/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-static \
|
|
--disable-gtk-doc \
|
|
--enable-gtk3 \
|
|
--enable-dbus \
|
|
--enable-keyfile-settings
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|