summaryrefslogtreecommitdiff
path: root/PKGBUILD
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2021-06-14 13:46:30 -0500
committerstkhan <personal@slickd.xyz>2021-06-14 13:46:30 -0500
commitd0b4841d3047b25c243c3e1b946a21cea4f40be7 (patch)
tree02662b08adbd960371c6e3cc0844c1d4dbc3a88e /PKGBUILD
parenta738110c2693fe65396b5d43e2f9dff5bd0644db (diff)
Testing PKGBUILD
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..2052485
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: SkywalkerSW5 <skywalkersw5@protonmail.com>
+pkgname=sarc
+pkgver=b1
+pkgrel=1
+pkgdesc="My suckless setup"
+arch=('any')
+url="https://github.com/SkywalkerSW5/sarc"
+license=('MIT')
+depends=('base-devel' 'adobe-source-code-pro-fonts' 'libnotify' 'dunst' 'picom' 'light' 'feh' 'xorg' 'sx' 'pulseaudio')
+provides=('dwm' 'st' 'dmenu')
+source=("$pkgname-$pkgver.tar.gz")
+noextract=("$pkgname-tools-$pkgver.tar.xz")
+md5sums=()
+
+build() {
+
+ tar xvf $pkgname-tools-$pkgver.tar.xz
+}
+
+package() {
+
+ mv * $pkgdir
+ mkdir -p /usr/local/bin
+ mv bin/* /usr/local/bin/
+ rm -r bin
+
+}