drop duplicate ports

This commit is contained in:
John McQuah 2023-03-07 21:30:01 -05:00
parent a5795a89bf
commit 5735cd5cf3
3 changed files with 0 additions and 43 deletions

View File

@ -1,10 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/wl-copy
-rwxr-xr-x root/root usr/bin/wl-paste
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/wl-clipboard.1.gz
-rw-r--r-- root/root usr/share/man/man1/wl-copy.1.gz
-rw-r--r-- root/root usr/share/man/man1/wl-paste.1.gz

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxCrDSQEerYnCHdW+TVNbxbP0HyBWYQpTopYk/X1Vl6/AipPXv0dGEsTZkkuvHy9XvbdIOsmpDpoK9ZvXZHGyvwE=
SHA256 (Pkgfile) = 87071dd46c9c7241ca9685ba2f3bd4a7284d80d8500db166a75939e924bf4b54
SHA256 (.footprint) = 011182cba71b7975baa2ba8ced498d8e8ea52041e24a876a4699c9eee5146daf
SHA256 (wl-clipboard-2.1.0.tar.gz) = 72dab9a7d3835c76d6ff2089f15ffec9e064a321e5f3cbbe961a8fa81aff5573

View File

@ -1,28 +0,0 @@
# Description: copy/paste utilities for wayland
# URL: https://github.com/bugaevc/wl-clipboard
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: wayland
# Optional: wayland-protocols
name=wl-clipboard
version=2.1.0
release=1
source=(https://github.com/bugaevc/$name/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
PKGMK_WLCLIP="--prefix=/usr \
--buildtype=release \
-Db_lto=true \
-Db_pie=true"
prt-get isinst zsh || PKGMK_WLCLIP+=" -Dzshcompletiondir=no"
prt-get isinst fish || PKGMK_WLCLIP+=" -Dfishcompletiondir=no"
meson setup build $PKGMK_WLCLIP
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
prt-get isinst bash-completion || rm -r $PKG/usr/share/bash-completion
}