diff options
author | Daniel Peukert | 2024-01-28 00:06:22 +0100 |
---|---|---|
committer | Daniel Peukert | 2024-01-28 00:06:22 +0100 |
commit | 5ffd68cf86b7f094f305efd167e24d15630a87b3 (patch) | |
tree | eea926a61d6f246ade9d7606922e5dc5aa8805bb | |
parent | 93ac9a936a0cfc17c521ade49f8821a6864c0e3d (diff) | |
download | aur-5ffd68cf86b7f094f305efd167e24d15630a87b3.tar.gz |
Sync pkgbuilds repo with AUR
-rw-r--r-- | .gitignore | 28 | ||||
-rw-r--r-- | PKGBUILD | 2 |
2 files changed, 15 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore index 82b3c183d5d4..076d904dd4ac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,14 @@ -# from https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore -*.tar -*.tar.* -*.rpm -*.jar -*.exe -*.msi -*.zip -*.tgz -*.log -*.log.* -*.sig - -*/ +# Only exclude files from the root of the package repo, as some AUR helpers download sources into the directory of the repo, +# which causes the gitignore file to apply to them too, which breaks some builds +# Based on https://github.com/github/gitignore/blob/main/ArchLinuxPackages.gitignore +/*.tar +/*.tar.* +/*.rpm +/*.jar +/*.exe +/*.msi +/*.zip +/*.tgz +/*.log +/*.log.* +/*.sig @@ -35,5 +35,5 @@ package() { done install -dm755 "$pkgdir/usr/share/licenses/$pkgname" - ln -sf "/usr/share/doc/$pkgname/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md" + ln -sf "/usr/share/doc/$pkgname/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/ISC" } |