1e16e19d11
Instead of running mkdir from debian/rules, the native way to create the necessary directories is with the dirs file which is read by the dh_installdirs helper script. See: * https://www.debian.org/doc/manuals/maint-guide/dother.en.html#dirs * dh_installdirs(1) manual page I am not aware of any specific problems that could arise from doing it manually instead of using dh_installdirs. But sticking to the native approach might be a good idea.
32 lines
1.4 KiB
Bash
Executable file
32 lines
1.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
PKG_ARCH=`dpkg --print-architecture`
|
|
PKG_DATE=`date -R`
|
|
PKG_VERSION=`cd /src && git describe --tags --abbrev=0`
|
|
|
|
echo "PKG_VERSION=$PKG_VERSION"
|
|
echo "PKG_ARCH=$PKG_ARCH"
|
|
echo "PKG_DATE=$PKG_DATE"
|
|
|
|
cd /src && \
|
|
make miniflux && \
|
|
mkdir -p /build/debian && \
|
|
cd /build && \
|
|
cp /src/miniflux /build/ && \
|
|
cp /src/miniflux.1 /build/ && \
|
|
cp /src/LICENSE /build/ && \
|
|
cp /src/packaging/miniflux.conf /build/ && \
|
|
cp /src/packaging/systemd/miniflux.service /build/debian/ && \
|
|
cp /src/packaging/debian/compat /build/debian/compat && \
|
|
cp /src/packaging/debian/copyright /build/debian/copyright && \
|
|
cp /src/packaging/debian/miniflux.manpages /build/debian/miniflux.manpages && \
|
|
cp /src/packaging/debian/miniflux.postinst /build/debian/miniflux.postinst && \
|
|
cp /src/packaging/debian/rules /build/debian/rules && \
|
|
cp /src/packaging/debian/miniflux.dirs /build/debian/miniflux.dirs && \
|
|
echo "miniflux ($PKG_VERSION) experimental; urgency=low" > /build/debian/changelog && \
|
|
echo " * Miniflux version $PKG_VERSION" >> /build/debian/changelog && \
|
|
echo " -- Frédéric Guillot <f@miniflux.net> $PKG_DATE" >> /build/debian/changelog && \
|
|
sed "s/__PKG_ARCH__/${PKG_ARCH}/g" /src/packaging/debian/control > /build/debian/control && \
|
|
dpkg-buildpackage -us -uc -b && \
|
|
lintian --check --color always ../*.deb && \
|
|
cp ../*.deb /pkg/
|