summaryrefslogtreecommitdiff
path: root/core/e2fsprogs/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'core/e2fsprogs/MAKEPKG')
-rw-r--r--core/e2fsprogs/MAKEPKG45
1 files changed, 45 insertions, 0 deletions
diff --git a/core/e2fsprogs/MAKEPKG b/core/e2fsprogs/MAKEPKG
new file mode 100644
index 0000000..64110d3
--- /dev/null
+++ b/core/e2fsprogs/MAKEPKG
@@ -0,0 +1,45 @@
+#!/bin/mkpkg
+# description: Ext2/3/4 filesystem utilities
+# url: https://e2fsprogs.sourceforge.net/
+
+name=e2fsprogs
+version=1.47.4
+release=1
+depends=(util-linux)
+source=(https://www.kernel.org/pub/linux/kernel/people/tytso/$name/v$version/$name-$version.tar.xz)
+
+sha256sums=(
+ "fd5bf388cbdbe006a3d3b318d983b2948382440acc85a87f1e7d108653e8db0b"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/ \
+ --bindir=/bin \
+ --sbindir=/sbin \
+ --libdir=/lib \
+ --includedir=/include \
+ --mandir=/usr/share/man \
+ --enable-elf-shlibs \
+ --disable-nls \
+ --disable-uuidd \
+ --disable-fsck \
+ --disable-libuuid \
+ --disable-libblkid
+
+ make
+ make DESTDIR=$PKG install
+
+ rm -f $PKG/lib/e2initrd_helper
+ rm -rf $PKG/libexec $PKG/lib/udev $PKG/etc/cron.d
+ rm -rf $PKG/share
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh