diff options
author | Erich Eckner <git@eckner.net> | 2022-06-26 19:47:24 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-06-26 19:47:24 +0200 |
commit | d9d7f3429a69af864e4cdd839d46966d8880394f (patch) | |
tree | ba25ab99aae0f13439665b2cf491327f5db8c804 | |
parent | 06a6502161714a49482a8f6ba8a7ad9624830cdb (diff) | |
download | crux-ports-d9d7f3429a69af864e4cdd839d46966d8880394f.tar.xz |
lazarus: fill usr/bin
-rw-r--r-- | manualPorts/lazarus/.footprint | 3 | ||||
-rw-r--r-- | manualPorts/lazarus/.signature | 6 | ||||
-rw-r--r-- | manualPorts/lazarus/Pkgfile | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/manualPorts/lazarus/.footprint b/manualPorts/lazarus/.footprint index 3eec07d..50a7396 100644 --- a/manualPorts/lazarus/.footprint +++ b/manualPorts/lazarus/.footprint @@ -1,5 +1,8 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/lazarus -> ../lib/lazarus/lazarus +lrwxrwxrwx root/root usr/bin/lazbuild -> ../lib/lazarus/lazbuild +lrwxrwxrwx root/root usr/bin/startlazarus -> ../lib/lazarus/startlazarus drwxr-xr-x root/root usr/lib/ drwxrwxr-x root/root usr/lib/lazarus/ -rw-rw-r-- root/root usr/lib/lazarus/.gitattributes diff --git a/manualPorts/lazarus/.signature b/manualPorts/lazarus/.signature index e01f707..45218a8 100644 --- a/manualPorts/lazarus/.signature +++ b/manualPorts/lazarus/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/deepthought.pub -RWQxCptPusLGGtxxP9r5fz0V+VGZJwjjTHX1vjzKBSDYEbIBMlni4AZMfpRonC7AQ14dYMv83Xos0KUBs8jkkCJiKLce+OUshAs= -SHA256 (Pkgfile) = 03a15be950250dde930c213977b4ed7b8248408547e886a0b70ef1c35d51bc49 -SHA256 (.footprint) = cc6e3e1c9eaf1cca98d44ac7204fe62cf1daf6342f2a12f35c6b1e1bcaa4c2e8 +RWQxCptPusLGGge0grpxwoCL8FfQZS8C4Zjp/eYGmP05TqUvs7BR3wUeA3Ahn/jZ2/ei4XoFQVb1MvT0a0hUknNvGZpuAtVzmwc= +SHA256 (Pkgfile) = c45898b3ea252e7dfe08eaab0175166de4c8c262d4e328d56e2550e43591786b +SHA256 (.footprint) = f98242726a1422c4a0a7b452fde66e08f5da53f039608ce745dc3ae78b4d2925 SHA256 (lazarus-2.2.0-0.tar.gz) = b6b5d516511e3dfb34910d7656db068d4bba80f009692500aebbcae79cb12160 diff --git a/manualPorts/lazarus/Pkgfile b/manualPorts/lazarus/Pkgfile index ccd88a5..b74a87a 100644 --- a/manualPorts/lazarus/Pkgfile +++ b/manualPorts/lazarus/Pkgfile @@ -5,7 +5,7 @@ name=lazarus version=2.2.0 -release=2 +release=3 source=(https://downloads.sourceforge.net/project/$name/Lazarus%20Zip%20_%20GZip/Lazarus%20$version/$name-$version-0.tar.gz) build() { @@ -24,7 +24,7 @@ build() { --exclude="debian" --exclude="COPYING*" \ --exclude="*.app" --exclude="tools/install" \ . "$PKG"/usr/lib/lazarus - for s in "$PKG"/usr/bin/*; do + for s in "$PKG"/usr/lib/lazarus/*laz*; do [ ! -d "$s" ] || continue [ -x "$s" ] || continue ln -s "../lib/lazarus/${s##*/}" "${PKG}/usr/bin/${s##*/}" |