Package Details: overdue 1.1.1-1

Git Clone URL: https://aur.archlinux.org/overdue.git (read-only, click to copy)
Package Base: overdue
Description: Get notified about running daemons that reference outdated shared libraries
Upstream URL: https://github.com/tylerjl/overdue
Licenses: MIT
Submitter: leothrix
Maintainer: leothrix
Last Packager: leothrix
Votes: 37
Popularity: 0.22
First Submitted: 2016-05-11 02:10 (UTC)
Last Updated: 2022-07-02 05:39 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

leothrix commented on 2022-07-02 05:40 (UTC)

Thanks @morgenstern; updated.

morgenstern commented on 2022-06-04 03:40 (UTC)

Thanks for creating this script. The PKGBUILD has a few issues that could be corrected, though:

1) Please give the downloaded package a unique filename. Example:

source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tylerjl/$pkgname/archive/v$pkgver.tar.gz")

2) The package is missing a license file. The MIT license is not part of the licenses package because it includes a copyright notice. Therefore, you need to distribute an MIT license with the package and install it within the package() function. Example:

install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"

3) The gawk package is part of the base-devel group, so it does not need to be explicitly declared as a dependency, as it is expected that anyone building packages from the AUR will have that group installed.