mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 23:31:34 +01:00
27 lines
724 B
Plaintext
27 lines
724 B
Plaintext
# Contributor: Sergiy Stupar <owner@sestolab.pp.ua>
|
|
# Maintainer: Sergiy Stupar <owner@sestolab.pp.ua>
|
|
pkgname=yank
|
|
pkgver=1.3.0
|
|
pkgrel=0
|
|
pkgdesc="Yank terminal output to clipboard"
|
|
url="https://github.com/mptre/yank"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="cmd:xsel"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/mptre/yank/archive/v$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
make PREFIX=/usr DESTDIR="$pkgdir" install
|
|
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
|
|
}
|
|
|
|
sha512sums="
|
|
be449c27a28479d96123fc79cafb1c33b4a7f626644765882c686db200e4755cda6ae28404b65f2bcfe02d842c5455ef9f9463cd0f392d02a561a713a6ae07ca yank-1.3.0.tar.gz
|
|
"
|