From 31d147b20c67d95a9e306d0749200bf964ac42af Mon Sep 17 00:00:00 2001 From: Yigit Sever Date: Fri, 29 Oct 2021 01:30:24 +0300 Subject: Use actual files instead of submodules --- pfetch | 1 - pfetch/.SRCINFO | 14 ++++++++++++++ pfetch/.gitignore | 3 +++ pfetch/PKGBUILD | 19 +++++++++++++++++++ 4 files changed, 36 insertions(+), 1 deletion(-) delete mode 160000 pfetch create mode 100644 pfetch/.SRCINFO create mode 100644 pfetch/.gitignore create mode 100644 pfetch/PKGBUILD (limited to 'pfetch') diff --git a/pfetch b/pfetch deleted file mode 160000 index 4028e8e..0000000 --- a/pfetch +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4028e8ee61b77b289b2dd9789f9dc2178e4fa8d4 diff --git a/pfetch/.SRCINFO b/pfetch/.SRCINFO new file mode 100644 index 0000000..daffbc0 --- /dev/null +++ b/pfetch/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = pfetch + pkgdesc = A pretty system information tool written in POSIX sh. + pkgver = 0.6.0 + pkgrel = 3 + url = https://github.com/dylanaraps/pfetch + arch = any + license = MIT + provides = pfetch + conflicts = pfetch-git + source = pfetch-0.6.0.tar.gz::https://github.com/dylanaraps/pfetch/archive/0.6.0.tar.gz + b2sums = 300f6f44f9306df4f438227a6f35bd54f50e477b950a45d63656f7c460cfc30a8b44ebdb3d5fdcf1e808e3b8e8e69e14088ff73a5da4485abf694893f2cc53f3 + +pkgname = pfetch + diff --git a/pfetch/.gitignore b/pfetch/.gitignore new file mode 100644 index 0000000..8d78c83 --- /dev/null +++ b/pfetch/.gitignore @@ -0,0 +1,3 @@ +pkg/ +src/ +*.tar* diff --git a/pfetch/PKGBUILD b/pfetch/PKGBUILD new file mode 100644 index 0000000..e3a1ab5 --- /dev/null +++ b/pfetch/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Qontinuum +# Contributor: Caio Novais + +pkgname=pfetch +pkgver=0.6.0 +pkgrel=3 +pkgdesc="A pretty system information tool written in POSIX sh." +arch=('any') +url="https://github.com/dylanaraps/$pkgname" +license=('MIT') +provides=("$pkgname") +conflicts=('pfetch-git') +source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz") +b2sums=('300f6f44f9306df4f438227a6f35bd54f50e477b950a45d63656f7c460cfc30a8b44ebdb3d5fdcf1e808e3b8e8e69e14088ff73a5da4485abf694893f2cc53f3') + +package() { + install -Dm755 "$srcdir/$pkgname-$pkgver/pfetch" "$pkgdir/usr/bin/pfetch" + install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} -- cgit v1.2.3-70-g09d2