update: rustc 1.76.0

This commit is contained in:
ngn
2024-08-20 02:15:50 +03:00
parent 99ac0fb0b9
commit 5d53e1574d
10 changed files with 123 additions and 71 deletions

View File

@ -1,21 +1,23 @@
NAME="libfm"
DESC="Library and other files required by menu-cache-gen libexec of menu-cache-1.1.0"
VERSION="1.3.2"
FILES=("https://downloads.sourceforge.net/pcmanfm/libfm-$VERSION.tar.xz")
FILES=("https://downloads.sourceforge.net/pcmanfm/libfm-${VERSION}.tar.xz")
HASHES=("c87a0ff41ae77825079b2f785ec0741e")
DEPENDS=(
"gtk2" "gtk3" "menu-cache"
"libexif" "lxmenu-data"
)
DEPENDS=("menu-cache" "libexif" "lxmenu-data")
BUILD=("gtk-doc" "intltool")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
tar xf "${NAME}-${VERSION}.tar.xz"
cd "${NAME}-${VERSION}"
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-static
make && make DESTDIR="$ROOTDIR" install
export CFLAGS="${CFLAGS} -std=gnu89"
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-static
make
make DESTDIR="${ROOTDIR}" install
cd .. && rm -r $NAME-$VERSION
cd .. && rm -r "${NAME}-${VERSION}"
}