added gitignore PKGBUILD

This commit is contained in:
Frede Hundewadt 2022-04-29 16:23:12 +02:00
parent 9773b2d40d
commit d58fea14c1
2 changed files with 27 additions and 0 deletions

15
.gitignore vendored Normal file
View file

@ -0,0 +1,15 @@
src
pkg
*.pkg.*
*.src.*
*.tar.*
*.tgz
*.run
*.zip
*.xz
*.log
*~
.AURINFO
.SRCINFO
.lock
*apng.patch.gz

12
PKGBUILD Normal file
View file

@ -0,0 +1,12 @@
pkgname="lxqt-theme"
pkgver=0.2
pkgrel=1
arch=('any')
licens=('MIT')
package(){
install -d -m755 $pkgdir/etc
install -d -m755 $pkgdir/root
install -d -m755 $pkgdir/usr
cp -r $startdir/etc $startdir/usr $startdir/root $pkgdir
}