mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
27 lines
571 B
Plaintext
27 lines
571 B
Plaintext
# Description: A text editor for xfce
|
|
# URL: https://docs.xfce.org/apps/mousepad/start
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: desktop-file-utils gspell gtksourceview4 libxfce4ui polkit
|
|
|
|
name=mousepad
|
|
version=0.6.3
|
|
release=1
|
|
source=(https://archive.xfce.org/src/apps/$name/${version:0:3}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--disable-nls \
|
|
--disable-debug \
|
|
--sysconfdir=/etc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
|
|
}
|