diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2025-01-01 22:57:56 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2025-01-01 22:57:56 -0600 |
commit | 27988609c853711cd2cb6050575cafb8155a2946 (patch) | |
tree | d56d6287766fc945b76b5b200497f89582917e7d | |
parent | a901f5bfdf8113cb648abb678f244b65370c277b (diff) | |
download | packages-27988609c853711cd2cb6050575cafb8155a2946.tar.gz packages-27988609c853711cd2cb6050575cafb8155a2946.tar.bz2 packages-27988609c853711cd2cb6050575cafb8155a2946.tar.xz packages-27988609c853711cd2cb6050575cafb8155a2946.zip |
user/mailcap: Fix style issues
* Tabs, not spaces.
* License should be an SPDX identifier, which doesn't allow spaces.
* sha512sums can be on one line (regen'd with `abuild checksum`).
-rw-r--r-- | user/mailcap/APKBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/user/mailcap/APKBUILD b/user/mailcap/APKBUILD index deada77a7..91cc3598c 100644 --- a/user/mailcap/APKBUILD +++ b/user/mailcap/APKBUILD @@ -6,16 +6,17 @@ pkgrel=0 pkgdesc="Helper application and MIME type associations for file types" url="https://pagure.io/mailcap" arch="noarch" -license="Public Domain" -options="!check" # no testsuite +license="Public-Domain" +options="!check" # No test suite. subpackages="$pkgname-doc" source="https://releases.pagure.org/mailcap/mailcap-$pkgver.tar.xz" package() { - make install DESTDIR="$pkgdir" - rm -Rf "$pkgdir"/etc/nginx + make install DESTDIR="$pkgdir" + rm -Rf "$pkgdir"/etc/nginx } sha512sums=" a80caba013b644111f163d8ef74fe801d7266cf4edd38ca723f98fb12a103a24e84a8fca0c569beb05ca0f407437ed1282306b30303c38327b744194c6fe80b2 mailcap-2.1.54.tar.xz " +sha512sums="a80caba013b644111f163d8ef74fe801d7266cf4edd38ca723f98fb12a103a24e84a8fca0c569beb05ca0f407437ed1282306b30303c38327b744194c6fe80b2 mailcap-2.1.54.tar.xz" |