Overview
| Comment: | Fixed bug in rpm2deb for x86_64 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
def14c0dc347d02ef16202909f22e9c5 |
| User & Date: | rkeene on 2011-07-21 21:12:51 |
| Other Links: | manifest | tags |
Context
|
2011-08-24
| ||
| 01:46 | Updated Mac OS X build scripts check-in: e8be04d9cf user: rkeene tags: trunk | |
|
2011-07-21
| ||
| 21:12 | Fixed bug in rpm2deb for x86_64 check-in: def14c0dc3 user: rkeene tags: trunk | |
|
2011-06-17
| ||
| 06:26 | Corrected small issues check-in: 80df9c1ff5 user: rkeene tags: trunk | |
Changes
Modified build/rpm2deb from [7cc46ae9f0] to [b2cfeaf6b7].
| ︙ | ︙ | |||
38 39 40 41 42 43 44 |
(
cd "${WORKDIR}/root" || exit 1
## Create MD5 Sums
find . -type f | xargs md5sum > "${WORKDIR}/control/md5sums"
## Create Package description
| | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
(
cd "${WORKDIR}/root" || exit 1
## Create MD5 Sums
find . -type f | xargs md5sum > "${WORKDIR}/control/md5sums"
## Create Package description
rpm -q --queryformat 'Package: %{Name}\nVersion: %{Version}-%{Release}\nArchitecture: %{Arch}\nInstalled-Size: %{Size}\nMaintainer: %{Packager}\nDescription:' -p "${RPMFILE}" | sed 's@^Architecture: x86_64$@Architecture: amd64@' > "${WORKDIR}/control/control"
rpm -q --queryformat '%{Description}' -p "${RPMFILE}" | sed 's@^@ @;s@^ $@ .@' >> "${WORKDIR}/control/control"
echo '' >> "${WORKDIR}/control/control"
## Create tarball with all data
cd "${WORKDIR}/control" || exit 1
tar -zcf "${WORKDIR}/deb/control.tar.gz" *
) || exit 1
|
| ︙ | ︙ |