mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-12-06 08:03:50 +01:00
12 lines
305 B
Bash
12 lines
305 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
sourcefiles="firefox-esr"
|
|
|
|
pkgname=$(grep "^pkgname=" PKGBUILD | awk -F"=" '{print $2}')
|
|
pkgrel=$(grep "^pkgrel=" PKGBUILD | awk -F"=" '{split($2,a," ");gsub(/"/, "", a[1]);print a[1]}')
|
|
arch=$(grep "^arch=" PKGBUILD | awk -F"'" '{print $2}')
|
|
|
|
tar -zcvf $pkgname.tar.gz $sourcefiles
|