reiserfsprogs: syntax

This commit is contained in:
Tim Biermann 2021-12-14 10:39:35 +01:00
parent 753e09e8f6
commit 16a35765e2
2 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/dtpLjBkWZFt8iIlZhdrJBtw9qb03qO5iw4Z5WXPpczh1FHHFgGo2sDOfpZxcXIkXfHZg9TsjetskfU6n1FDuQM=
SHA256 (Pkgfile) = d7bf11204a4c9a88688398334d1b76ed2e71113c94c09519562f6bf870334f47
RWSE3ohX2g5d/YqGC1ITkuDoUByt0Fwf98Voa6zGs6em4WfW7F139DJtZh9v7GJghx+5wfl4hV22dmdzgCJIhf168ZFWbIbxdwo=
SHA256 (Pkgfile) = a06945ff564f325d13cd2483e882fcb3147495206b3aabfe3c73ca835a5a66f2
SHA256 (.footprint) = 70da443ad9001947ee98a1a3280170fbb29baa4dbb48f1901d7bf612bb8c8136
SHA256 (reiserfsprogs-3.6.27.tar.xz) = 0e95b67fa7746a3c2d59145e9b9c2feb4a6be52853e83b497b182eae508e62e3
SHA256 (reiserfsprogs-3.6.27-loff_t.patch) = 2d4e90d5e2b0610021d0c078f350e098d5573edccdf2864909aada83ed0473f9

View File

@ -1,27 +1,27 @@
# Description: Filesystem utilities for ReiserFS
# URL: https://en.wikipedia.org/wiki/ReiserFS
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: e2fsprogs
# URL: https://en.wikipedia.org/wiki/ReiserFS
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: e2fsprogs
name=reiserfsprogs
version=3.6.27
release=2
source=(https://www.kernel.org/pub/linux/kernel/people/jeffm/$name/v$version/$name-$version.tar.xz
$name-$version-loff_t.patch)
$name-$version-loff_t.patch)
build () {
cd $name-$version
cd $name-$version
#fix build with glibc 2.28
patch -p1 -i $SRC/$name-$version-loff_t.patch
autoreconf -i
#fix build with glibc 2.28
patch -p1 -i $SRC/$name-$version-loff_t.patch
autoreconf -i
./configure --prefix=/usr --sbindir=/sbin
./configure --prefix=/usr --sbindir=/sbin
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
install -d $PKG/lib
mv $PKG/usr/lib/libreiserfscore.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/usr/lib/libreiserfscore.so) $PKG/usr/lib/libreiserfscore.so
install -d $PKG/lib
mv $PKG/usr/lib/libreiserfscore.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/usr/lib/libreiserfscore.so) $PKG/usr/lib/libreiserfscore.so
}