summaryrefslogtreecommitdiffstats
path: root/pfetch
diff options
context:
space:
mode:
Diffstat (limited to 'pfetch')
-rw-r--r--pfetch/.SRCINFO13
-rw-r--r--pfetch/.gitignore3
-rw-r--r--pfetch/PKGBUILD21
3 files changed, 37 insertions, 0 deletions
diff --git a/pfetch/.SRCINFO b/pfetch/.SRCINFO
new file mode 100644
index 0000000..878a4af
--- /dev/null
+++ b/pfetch/.SRCINFO
@@ -0,0 +1,13 @@
1pkgbase = pfetch
2 pkgdesc = A pretty system information tool written in POSIX sh.
3 pkgver = 1.11.0
4 pkgrel = 1
5 url = https://github.com/Un1q32/pfetch
6 arch = any
7 license = MIT
8 provides = pfetch
9 conflicts = pfetch-git
10 source = pfetch-1.11.0.tar.gz::https://github.com/Un1q32/pfetch/archive/1.11.0.tar.gz
11 sha256sums = 5098c9d359a4b33bea27c8740b7ceeef0f3ba83daf4d2a6de9ffdb3f6ab8a3d9
12
13pkgname = 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 @@
1pkg/
2src/
3*.tar*
diff --git a/pfetch/PKGBUILD b/pfetch/PKGBUILD
new file mode 100644
index 0000000..c26e8a7
--- /dev/null
+++ b/pfetch/PKGBUILD
@@ -0,0 +1,21 @@
1# Maintainer: Yigit Sever <yigit at yigitsever dot com>
2# Contributor: Qontinuum <qontinuum.dev@protonmail.ch>
3# Contributor: Caio Novais <caionov08 at gmail dot com>
4
5pkgname=pfetch
6pkgver=1.11.0
7pkgrel=1
8pkgdesc="A pretty system information tool written in POSIX sh."
9arch=('any')
10url="https://github.com/Un1q32/$pkgname"
11license=('MIT')
12provides=("$pkgname")
13conflicts=('pfetch-git')
14source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
15sha256sums=('5098c9d359a4b33bea27c8740b7ceeef0f3ba83daf4d2a6de9ffdb3f6ab8a3d9')
16
17package() {
18 install -Dm755 "$srcdir/$pkgname-$pkgver/pfetch" "$pkgdir/usr/bin/pfetch"
19 install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
20 install -Dm644 "$srcdir/$pkgname-$pkgver/$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1"
21}