From 47595861db2066a6b6a017ae4d53d63b8fb5656a Mon Sep 17 00:00:00 2001 From: Matt C Date: Mon, 24 Jan 2022 14:49:01 -0500 Subject: [PATCH] fix pkgbuild --- .gitignore | 3 +++ PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0690576 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*tar* +pkg/ +src/ \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD index 1cc6c59..e51ee97 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,7 +7,7 @@ pkgdesc="Crystal Linux Wallpaper Images" arch=('any') url="https://git.tar.black/crystal/wallpapers" license=('GPL') -source=('') +source=() depends=() conflicts=() md5sums=() @@ -15,6 +15,6 @@ md5sums=() package() { mkdir -p "${pkgdir}/usr/share/backgrounds/crystal" - cp -rv *.jpg "${pkgdir}//usr/share/backgrounds/crystal/." + cp -rv ../*.jpg ../*.png ../*.svg "${pkgdir}/usr/share/backgrounds/crystal/." }