diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2025-06-21 20:39:43 +0200 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2025-07-20 14:01:08 +0200 |
commit | 26e9f0c1223dd66922e275342e751f4574875c19 (patch) | |
tree | 4a600203d62970e53459df955c82f63b4c076256 | |
parent | 58b4ce18809b8ae0f2d5b3f810ff57df8fc8ea65 (diff) | |
download | atracdenc-26e9f0c1223dd66922e275342e751f4574875c19.tar.gz |
Add debian package
-rw-r--r-- | debian/changelog | 10 | ||||
-rw-r--r-- | debian/control | 18 | ||||
-rw-r--r-- | debian/copyright | 4 | ||||
-rwxr-xr-x | debian/rules | 5 | ||||
-rw-r--r-- | debian/source/format | 1 |
5 files changed, 38 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..41b2b33 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,10 @@ +atracdenc (0.2.0) UNRELEASED; urgency=low + + * ATH and some bit allocation tuning for ATRAC1 compatible encoding. + * ATH, energy aware quanitization and tuning for ATRAC3 compatible + encoding. + * Noticeable improvements for LP4 mode (but still not perfect on some + tracks for LP4 bitrate) + * Initial implementation of ATRAC3PLUS compatible encoding. + + -- Daniil Cherednik <pkgsup@mastervirt.ru> Mon, 16 Jun 2025 22:21:54 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7c2eb5c --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: atracdenc +Section: sound +Priority: optional +Maintainer: Daniil Cherednik <dan.cherednik@gmail.com> +Bugs: mailto:pkgsup@mastervirt.ru +Homepage: https://github.com/dcherednik/atracdenc +Build-Depends: debhelper-compat (= 13), + cmake, + libsndfile1-dev +Standards-Version: 0.2.0 + +Package: atracdenc +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Open source ATRAC compatible encoder. + Atracdenc is a program which can be used to create ATRAC compatible + audio files. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..fef46a6 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,4 @@ +Files: + * +Copyright: 2015-2025 Daniil Cherednik +License: LGPL-2.1-or-later diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..643bce8 --- /dev/null +++ b/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +export DH_VERBOSE = 1 +%: + dh $@ + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |