Update package version to 10.3.0

This commit is contained in:
2025-11-15 12:06:02 +02:00
parent 4acb4328f2
commit d3ace4e76e
2 changed files with 8 additions and 6 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
name: dhcpcd name: dhcpcd
description: A DHCP and DHCPv6 client description: A DHCP and DHCPv6 client
version: 10.2.4 version: 10.3.0
revision: 2 revision: 1
url: https://roy.marples.name/projects/dhcpcd url: https://roy.marples.name/projects/dhcpcd
license: BSD-2-Clause license: BSD-2-Clause
architecture: any architecture: any
@@ -9,11 +9,11 @@ type: source
depends: depends:
- glibc - glibc
- libmd - libmd
- libudev
- openssl - openssl
- sh - sh
- udev
downloads: downloads:
- url: https://github.com/NetworkConfiguration/dhcpcd/releases/download/v${BPM_PKG_VERSION}/dhcpcd-${BPM_PKG_VERSION}.tar.xz - url: https://github.com/NetworkConfiguration/dhcpcd/releases/download/v${BPM_PKG_VERSION}/dhcpcd-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 6721e606609226dbf4d864a78802a9e96beec0ee034a1bd84138b3e037bba7d9 checksum: 06e4c1aaf958523f3fd1c57258c613c6c7ae56b8f1d678fa7943495d5ea6aeb5
+4 -2
View File
@@ -24,8 +24,10 @@ check() {
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
make DESTDIR="$BPM_OUTPUT" install 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 install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/dhcpcd/LICENSE
} }