Initial commit

This commit is contained in:
2026-04-17 15:19:29 +03:00
commit a03eb08849
5 changed files with 87 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Git repository
REPO="https://git.dpkg.org/git/dpkg/dpkg.git"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | tail -1 | cut -d'/' -f3)
echo "$TAG_NAME"
+33
View File
@@ -0,0 +1,33 @@
name: dpkg
description: The Debian package manager
version: 1.23.7
revision: 1
url: https://tracker.debian.org/pkg/dpkg
license: GPL2-or-later
maintainers:
- [email protected]
architecture: any
type: source
depends:
- bzip2
- gcc-libs
- glibc
- libmd
- ncurses
- perl
- xz-utils
- zlib
- zstd
make_depends:
- git
- perl-io-string
- perl-timedate
check_depends:
- perl-io-string
- perl-test-pod
downloads:
- url: https://git.dpkg.org/git/dpkg/dpkg.git
type: git
clone_to: ${BPM_SOURCE}
git_branch: ${BPM_PKG_VERSION}
checksum: ef4d59f5925661818484ac666014ee3e665aadcf
+3
View File
@@ -0,0 +1,3 @@
Vendor: TideLinux
Vendor-URL: https://git.enumerated.dev/tide-linux
Bugs: https://git.enumerated.dev/tide-linux/dpkg/issues
+39
View File
@@ -0,0 +1,39 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
cd "$BPM_SOURCE"
# Fix zsh completions install location
sed -i 's|zsh/vendor-completions|zsh/site-functions|' configure.ac
./autogen
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-start-stop-daemon
make
}
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
make check
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
make DESTDIR="$BPM_OUTPUT" install
install -Dm644 /dev/null "$BPM_OUTPUT"/var/lib/dpkg/status
install -Dm644 /dev/null "$BPM_OUTPUT"/var/lib/dpkg/available
install -Dm644 "$BPM_WORKDIR"/origin.tidelinux "$BPM_OUTPUT"/etc/dpkg/origins/tidelinux
ln -sf tidelinux "$BPM_OUTPUT"/etc/dpkg/origins/default
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/dpkg/COPYING
}