crux-musl

Unnamed repository; edit this file 'description' to name the repository.
git clone https://codeberg.org/emmett1/crux-musl
Log | Files | Refs | README | LICENSE

Pkgfile (702B)


      1 # Description: Filesystem utilities for btrfs
      2 # URL: https://btrfs.readthedocs.io/en/latest/
      3 # Maintainer: Emmett1, emmett1 dot 2miligrams at protonmail dot com
      4 # Depends on: lzo util-linux
      5 
      6 name=btrfs-progs
      7 version=6.15
      8 release=1
      9 source=(https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$version.tar.xz)
     10 
     11 build() {
     12 	cd $name-v$version
     13 
     14 	./configure \
     15 		--prefix=/usr \
     16 		--bindir=/sbin \
     17 		--disable-convert \
     18 		--disable-zoned \
     19 		--disable-documentation \
     20 		--disable-backtrace
     21 	make
     22 	make DESTDIR=$PKG install
     23 
     24 	install -d $PKG/usr/share/man/man{5,8}
     25 	install -m 644 Documentation/*.5 $PKG/usr/share/man/man5
     26 	install -m 644 Documentation/*.8 $PKG/usr/share/man/man8
     27 }