creating a .deb from archlinux tar.xz
I am trying to install the latest commit (4.0.3) of Nemo file manager on Ubuntu 18.04. It finally fixes the bug where searches do not include hidden folders. Since there is no configure
file in the commit, I am unable to make the build. Arch Linux has a compiled version of nemo 4.0.3 but I'm lost on how to install it or create a Debian package. Is anyone able to look at it and help me? Thanks. Nemo 4.03 from Arch Linux
deb packaging nemo
add a comment |
I am trying to install the latest commit (4.0.3) of Nemo file manager on Ubuntu 18.04. It finally fixes the bug where searches do not include hidden folders. Since there is no configure
file in the commit, I am unable to make the build. Arch Linux has a compiled version of nemo 4.0.3 but I'm lost on how to install it or create a Debian package. Is anyone able to look at it and help me? Thanks. Nemo 4.03 from Arch Linux
deb packaging nemo
add a comment |
I am trying to install the latest commit (4.0.3) of Nemo file manager on Ubuntu 18.04. It finally fixes the bug where searches do not include hidden folders. Since there is no configure
file in the commit, I am unable to make the build. Arch Linux has a compiled version of nemo 4.0.3 but I'm lost on how to install it or create a Debian package. Is anyone able to look at it and help me? Thanks. Nemo 4.03 from Arch Linux
deb packaging nemo
I am trying to install the latest commit (4.0.3) of Nemo file manager on Ubuntu 18.04. It finally fixes the bug where searches do not include hidden folders. Since there is no configure
file in the commit, I am unable to make the build. Arch Linux has a compiled version of nemo 4.0.3 but I'm lost on how to install it or create a Debian package. Is anyone able to look at it and help me? Thanks. Nemo 4.03 from Arch Linux
deb packaging nemo
deb packaging nemo
edited Dec 1 '18 at 19:41
muru
1
1
asked Dec 1 '18 at 17:16
Rick V
133
133
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Source-based method will fail (see below), but you can install compiled package from PPA:
sudo add-apt-repository ppa:trebelnik-stefina/cinnamon
sudo apt-get install nemo
and enjoy:
According to PKGBUILD you need to use meson
.
So you should download Ubuntu-specific build-dependencies
sudo apt-get build-dep nemo
then download the Nemo source from official repository:
sudo apt-get install git
cd ~/Downloads
git clone https://github.com/linuxmint/nemo.git
cd nemo
git checkout 4.0.3
then install meson
and compile the package:
sudo apt-get install meson
mkdir build
cd build
meson
but it will not compile because of old version of xapp
library:
Native dependency xapp found: NO found '1.0.4' but need: '>=1.4.0'
meson.build:84:0: ERROR: Invalid version of dependency, need 'xapp' ['>=1.4.0'] found '1.0.4'.
So it seems that you can't install it on 18.04 LTS...
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1097708%2fcreating-a-deb-from-archlinux-tar-xz%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Source-based method will fail (see below), but you can install compiled package from PPA:
sudo add-apt-repository ppa:trebelnik-stefina/cinnamon
sudo apt-get install nemo
and enjoy:
According to PKGBUILD you need to use meson
.
So you should download Ubuntu-specific build-dependencies
sudo apt-get build-dep nemo
then download the Nemo source from official repository:
sudo apt-get install git
cd ~/Downloads
git clone https://github.com/linuxmint/nemo.git
cd nemo
git checkout 4.0.3
then install meson
and compile the package:
sudo apt-get install meson
mkdir build
cd build
meson
but it will not compile because of old version of xapp
library:
Native dependency xapp found: NO found '1.0.4' but need: '>=1.4.0'
meson.build:84:0: ERROR: Invalid version of dependency, need 'xapp' ['>=1.4.0'] found '1.0.4'.
So it seems that you can't install it on 18.04 LTS...
add a comment |
Source-based method will fail (see below), but you can install compiled package from PPA:
sudo add-apt-repository ppa:trebelnik-stefina/cinnamon
sudo apt-get install nemo
and enjoy:
According to PKGBUILD you need to use meson
.
So you should download Ubuntu-specific build-dependencies
sudo apt-get build-dep nemo
then download the Nemo source from official repository:
sudo apt-get install git
cd ~/Downloads
git clone https://github.com/linuxmint/nemo.git
cd nemo
git checkout 4.0.3
then install meson
and compile the package:
sudo apt-get install meson
mkdir build
cd build
meson
but it will not compile because of old version of xapp
library:
Native dependency xapp found: NO found '1.0.4' but need: '>=1.4.0'
meson.build:84:0: ERROR: Invalid version of dependency, need 'xapp' ['>=1.4.0'] found '1.0.4'.
So it seems that you can't install it on 18.04 LTS...
add a comment |
Source-based method will fail (see below), but you can install compiled package from PPA:
sudo add-apt-repository ppa:trebelnik-stefina/cinnamon
sudo apt-get install nemo
and enjoy:
According to PKGBUILD you need to use meson
.
So you should download Ubuntu-specific build-dependencies
sudo apt-get build-dep nemo
then download the Nemo source from official repository:
sudo apt-get install git
cd ~/Downloads
git clone https://github.com/linuxmint/nemo.git
cd nemo
git checkout 4.0.3
then install meson
and compile the package:
sudo apt-get install meson
mkdir build
cd build
meson
but it will not compile because of old version of xapp
library:
Native dependency xapp found: NO found '1.0.4' but need: '>=1.4.0'
meson.build:84:0: ERROR: Invalid version of dependency, need 'xapp' ['>=1.4.0'] found '1.0.4'.
So it seems that you can't install it on 18.04 LTS...
Source-based method will fail (see below), but you can install compiled package from PPA:
sudo add-apt-repository ppa:trebelnik-stefina/cinnamon
sudo apt-get install nemo
and enjoy:
According to PKGBUILD you need to use meson
.
So you should download Ubuntu-specific build-dependencies
sudo apt-get build-dep nemo
then download the Nemo source from official repository:
sudo apt-get install git
cd ~/Downloads
git clone https://github.com/linuxmint/nemo.git
cd nemo
git checkout 4.0.3
then install meson
and compile the package:
sudo apt-get install meson
mkdir build
cd build
meson
but it will not compile because of old version of xapp
library:
Native dependency xapp found: NO found '1.0.4' but need: '>=1.4.0'
meson.build:84:0: ERROR: Invalid version of dependency, need 'xapp' ['>=1.4.0'] found '1.0.4'.
So it seems that you can't install it on 18.04 LTS...
edited Dec 1 '18 at 17:40
answered Dec 1 '18 at 17:32
N0rbert
21.1k54699
21.1k54699
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1097708%2fcreating-a-deb-from-archlinux-tar-xz%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown