add make_ext4fs

This commit is contained in:
Ella-0 2021-09-26 11:46:14 +00:00
parent 223f33fb05
commit 7a53d74d6b
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
pkgname=make_ext4fs
pkgver=main
fetch() {
curl -L "https://github.com/iglunix/make_ext4fs/archive/refs/heads/main.tar.gz" -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
make
}
package() {
cd $pkgname-$pkgver
install -d $pkgdir/sbin
install -Dm755 ./make_ext4fs $pkgdir/sbin/mkfs.ext4
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}