lots of package moving

This commit is contained in:
Ella-0 2021-10-25 11:26:07 +00:00
parent b3fa8f77d8
commit 5c6531dc76
21 changed files with 0 additions and 0 deletions

22
extra/pfetch/build.sh Normal file
View file

@ -0,0 +1,22 @@
pkgname=pfetch
pkgver=master
fetch() {
curl -L "https://github.com/dylanaraps/pfetch/archive/refs/heads/$pkgver.tar.gz" -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
echo "Nothing to do"
}
package() {
cd $pkgname-$pkgver
install -Dm755 pfetch $pkgdir/usr/bin/
}
license() {
cd $pkgname-$pkgver
cat LICENSE.md
}