blob: b9c74bd1259558497db41f2697b0a25d4c1130d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Alexander Mot <alexander at amot dot dev>
pkgname=timestamp
pkgver=1.2.0
pkgrel=1
pkgdesc="Configurable tool to rename files with dates from existing EXIF, XMP, or inode metadata"
arch=('x86_64') # Not yet tested on anything else
url="https://github.com/amot-dev/timestamp"
license=('GPL-3.0-only')
depends=('glibc' 'gcc-libs' 'exiv2' 'yaml-cpp')
makedepends=('gcc>=14')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/amot-dev/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('d9769e9b8f3b281a2a83bc511692e4ed30067baa3e3819daddf19165dca96c4f')
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 "${srcdir}/${pkgname}-${pkgver}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}
|