mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-15 20:12:20 +01:00
24 lines
532 B
Plaintext
24 lines
532 B
Plaintext
# Description: File searching tool
|
|
# URL: https://docs.xfce.org/apps/catfish/start
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: dbus-python3 gtk3 python3-gobject python3-pexpect xdg-utils xfconf mlocate python3-distutils-extra
|
|
|
|
name=catfish
|
|
version=4.20.0
|
|
release=1
|
|
source=(https://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
meson setup build \
|
|
--prefix=/usr
|
|
|
|
DESTDIR=$PKG ninja -C build install
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
}
|