mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 15:12:20 +01:00
33 lines
635 B
Plaintext
33 lines
635 B
Plaintext
# Description: A simple text editor for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
|
|
# Depends on: gtk3 glib libxfce4util gtksourceview
|
|
|
|
name=mousepad
|
|
version=0.4.1
|
|
release=2
|
|
source=(post-install)
|
|
|
|
build() {
|
|
if cd "$name-$version" 2> /dev/null; then
|
|
git pull
|
|
else
|
|
git clone https://git.xfce.org/apps/$name/ "$name-$version"
|
|
cd "$name-$version"
|
|
fi
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-static \
|
|
--disable-gtk-docs \
|
|
--enable-gtk3 \
|
|
--enable-dbus \
|
|
--enable-keyfile-settings \
|
|
--disable-schemas-compile
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
}
|