From d3ace4e76e41a70a42dc094de5d70c31aa36a54c Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 15 Nov 2025 12:06:02 +0200 Subject: [PATCH] Update package version to 10.3.0 --- pkg.info | 8 ++++---- source.sh | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/pkg.info b/pkg.info index 66b2b69..bcadcba 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: dhcpcd description: A DHCP and DHCPv6 client -version: 10.2.4 -revision: 2 +version: 10.3.0 +revision: 1 url: https://roy.marples.name/projects/dhcpcd license: BSD-2-Clause architecture: any @@ -9,11 +9,11 @@ type: source depends: - glibc - libmd + - libudev - openssl - sh - - udev downloads: - url: https://github.com/NetworkConfiguration/dhcpcd/releases/download/v${BPM_PKG_VERSION}/dhcpcd-${BPM_PKG_VERSION}.tar.xz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: 6721e606609226dbf4d864a78802a9e96beec0ee034a1bd84138b3e037bba7d9 + checksum: 06e4c1aaf958523f3fd1c57258c613c6c7ae56b8f1d678fa7943495d5ea6aeb5 diff --git a/source.sh b/source.sh index e36a0ae..351d35e 100644 --- a/source.sh +++ b/source.sh @@ -24,8 +24,10 @@ check() { # This function is used to move the compiled files into the output directory package() { make DESTDIR="$BPM_OUTPUT" install - mkdir -p "$BPM_OUTPUT"/etc/esvm/services/ - install -m 644 ../dhcpcd.esv "$BPM_OUTPUT"/etc/esvm/services/dhcpcd.esv + # Install esvm service + install -Dm644 "$BPM_WORKDIR"/dhcpcd.esv "$BPM_OUTPUT"/etc/esvm/services/dhcpcd.esv + + # Install package license install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/dhcpcd/LICENSE }